From: Debian LibreOffice Maintainers Date: Sat, 13 Dec 2025 08:32:27 +0000 (+0100) Subject: moreIconsDialog-accesses-internet X-Git-Tag: archive/raspbian/4%25.8.4-1+rpi1^2~11 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=d384144f603c01d692db174f07c927ae2f6e6351;p=libreoffice.git moreIconsDialog-accesses-internet Gbp-Pq: Name moreIconsDialog-accesses-internet.diff --- diff --git a/cui/source/dialogs/AdditionsDialog.cxx b/cui/source/dialogs/AdditionsDialog.cxx index ed35df71468..a41d7ae2a5a 100644 --- a/cui/source/dialogs/AdditionsDialog.cxx +++ b/cui/source/dialogs/AdditionsDialog.cxx @@ -277,9 +277,13 @@ SearchAndParseThread::SearchAndParseThread(AdditionsDialog* pDialog, const bool , m_bExecute(true) , m_bIsFirstLoading(isFirstLoading) { - // if we are running a UITest, e.g. UITest_sw_options then - // don't attempt to downloading anything - m_bUITest = o3tl::IsRunningUITest(); + if (getenv("AUTOPKGTEST_TMP") != NULL) { + m_bUITest = false; // run always in autopkgtest + } else { + // if we are running a UITest, e.g. UITest_sw_options then + // don't attempt to downloading anything + m_bUITest = o3tl::IsRunningUITest(); + } } SearchAndParseThread::~SearchAndParseThread() {}